laravel check if eloquent just created

49

laravel check if eloquent just created -

$item = Item::firstOrCreate(['title' => 'Example Item']);

if ($item->wasRecentlyCreated === true) {
    // item wasn't found and have been created in the database
} else {
    // item was found and returned from the database
}

Comments

Submit
0 Comments